home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / restartIPServer / startClientServers.old < prev   
Encoding:
Text File  |  1990-11-09  |  431 b   |  21 lines

  1. #!/bin/csh -f
  2. #
  3. # Script to start up the daemons that run on clients
  4. # and depend on the ipServer
  5. #
  6. echo -n "ipServer "
  7. set host=`hostname`
  8. rm -f /hosts/$host/{X0,netIP,netUDP,netTCP,debug,rlogin*}
  9. if (-e /hosts/$host/ipStart) then
  10.     /hosts/$host/ipStart
  11. else
  12.     /sprite/daemons/ipServer >&! /hosts/$host/ip.out
  13. endif
  14. echo -n "inetd "
  15. /sprite/daemons/inetd
  16. echo -n "lpd "
  17. /sprite/daemons/lpd
  18. echo -n "sendmail "
  19. sendmail -bd
  20. echo "."
  21.